All Questions
Tagged with asynchronousasync
3 questions
2votes
2answers
491views
Should I create two synchronous or a single asynchronous rest APIs?
Here is the situation. System A sends the notification as it completes the work items to System B. System A does not know how many items the project consists of. It's just a pass-through system. ...
2votes
1answer
7kviews
What are the benefits of Asynchronous HTTP
Q.1 I know that when we are talking about synchronous HTTP, for each request a Thread may be spawn and get blocked, so when number of simultaneous connections increase, we will encounter massive ...
3votes
1answer
174views
Remote job execution and synchronization
I have master and nodes infrastructure. Master executes remote jobs on nodes. Each job returns success/failure message back to master. So the flow of execution is the following: master receives ...